home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Pier Shareware 9
/
The Pier Shareware #9 (Pier Exchange).ISO
/
039
/
bdlg32.exe
/
PAINTDLG.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-23
|
1KB
|
41 lines
// paintdlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPaintDlg dialog
class CPaintDlg : public CDialog
{
// Construction
public:
CPaintDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CPaintDlg)
enum { IDD = IDD_PAINT };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Attributes
protected:
CDC m_dcMem; // Compatible Memory DC for dialog
CBitmap m_bmpCircle; // Bitmap to display
HBITMAP m_hBmpOld; // Handle of old bitmap to save
BITMAP m_bmInfo; // Bitmap Information structure
CPoint m_pt; // Position for upper left corner of bitmap
CSize m_size; // Size (width and height) of bitmap
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CPaintDlg)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg void OnDestroy();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};